home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / fsovl / README < prev    next >
Text File  |  1993-01-20  |  714b  |  18 lines

  1.  
  2.                 FSOVL-HANDLER
  3.  
  4.     This is a filesystem overlay handler that provides automatic compression
  5.     and decompression of files.  Openning a file automatically decompresses
  6.     it.  Writing to a file automatically compresses it.  Files openned for
  7.     read are blocked into memory in 4K segments while files openned for
  8.     write are brought entirely into memory and then compressed on close.
  9.  
  10.     Seek operations are fast but an actual Read() after a seek may be slow.
  11.  
  12.     Files with extensions of .Z .LHA .LZH .ZOO .ZIP are not compressed.
  13.  
  14.     The first 8 bytes of the comment field of a file is reserved to store
  15.     its actual length.  This is transparent for operations done through the
  16.     FSOVL-HANDLER.
  17.  
  18.